home *** CD-ROM | disk | FTP | other *** search
/ Visual Basic Source Code / Visual Basic Source Code.iso / vbsource / flot1w / tbdemo.frm (.txt) < prev    next >
Encoding:
Visual Basic Form  |  1995-05-08  |  967 b   |  36 lines

  1. VERSION 2.00
  2. Begin Form Form1 
  3.    Caption         =   "Tool Bar Demo"
  4.    ClientHeight    =   4020
  5.    ClientLeft      =   1185
  6.    ClientTop       =   1740
  7.    ClientWidth     =   7365
  8.    ControlBox      =   0   'False
  9.    Height          =   4425
  10.    Icon            =   TBDEMO.FRX:0000
  11.    Left            =   1125
  12.    LinkTopic       =   "Form1"
  13.    ScaleHeight     =   4020
  14.    ScaleWidth      =   7365
  15.    Top             =   1395
  16.    Width           =   7485
  17.    Begin TextBox Text1 
  18.       Height          =   495
  19.       Left            =   0
  20.       MultiLine       =   -1  'True
  21.       ScrollBars      =   2  'Vertical
  22.       TabIndex        =   0
  23.       Top             =   0
  24.       Width           =   1215
  25.    End
  26. Sub Form_Load ()
  27. form1.WindowState = 0
  28. text1.Width = form1.ScaleWidth
  29. text1.Height = form1.ScaleHeight
  30. frmToolbar.Show
  31. End Sub
  32. Sub Form_Resize ()
  33. text1.Width = form1.ScaleWidth
  34. text1.Height = form1.ScaleHeight
  35. End Sub
  36.